home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1992 June: ROMin Holiday / ADC Developer CD (1992-06) (''ROMin Holiday'')_iso / Developer Connection - 06-1992.iso / Developer Essentials / DTS Sample Code / Snippets / Platforms & Tools / MacApp / MouseInfo 1.0 / ResourceConstants.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-04-29  |  978 b   |  40 lines  |  [TEXT/MPS ]

  1. //     ResourceConstants.h file
  2. //     Copyright © 1992 by Apple Computer, Inc.  All rights reserved. 
  3. //    Kent Sandvik DTS
  4. //    This file contains resource types which are needed in both the
  5. //    source code and the resource files. 
  6. //    Version Info (latest first):
  7. //
  8. //    <1>        khs        1.0        First final version
  9.  
  10.  
  11. #ifndef __RESOURCECONSTANTS__
  12. #define __RESOURCECONSTANTS__
  13.  
  14. //    Signature and Type
  15. #define kSignature                'FOOB'            // application signature
  16. #define kFileType                'FOOD'            // file type code used for document files created by this application
  17. #define kStationery                'fOOD'            // Stationery file type 
  18.  
  19.  
  20. //    Bundle Constants
  21. #define kBundleID                128
  22. #define kApplicationID            128
  23. #define kDocumentID                129
  24. #define kStationeryID            130
  25.  
  26.  
  27. //     Menus and Commands
  28. #define mWindows                3
  29. #define mMouseTrack                4
  30. #define cOpenTracker            4001
  31.  
  32. //    Views
  33. #define kMainWindow                1002            // the main document window
  34. #define kFloatingWindow            1003            // floating window
  35.  
  36.  
  37.  
  38. #endif __RESOURCECONSTANTS__
  39.  
  40.